home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
e_to_l
/
fbuilder
/
delphi
/
demos
/
aboutfm.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-09-15
|
811b
|
46 lines
unit Aboutfm;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, Rzlabel;
type
TAboutBox = class(TForm)
Panel2: TPanel;
iconpanel: TPanel;
ProgramIcon: TImage;
RzLabel1: TRzLabel;
Label1: TLabel;
Label3: TLabel;
Panel1: TPanel;
CompanyLabel: TRzLabel;
OKButton: TBitBtn;
RzLabel2: TRzLabel;
Label4: TLabel;
Label2: TLabel;
RzLabel3: TRzLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
Procedure DisplayAbout;
implementation
{$R *.DFM}
Procedure DisplayAbout;
var about : TAboutBox;
begin
About := TAboutBox.Create(NIL);
About.ShowModal;
About.Free;
end;
end.